home *** CD-ROM | disk | FTP | other *** search
- DefaultSetting = function()
- {
- var _loc1_ = _root;
- dishStatus1 = 1;
- dishStatus2 = 1;
- dishStatus3 = 1;
- _loc1_.dupNo = 2000;
- _loc1_.vessel_pot.pot_kettle._visible = false;
- _loc1_.dishArrow._visible = false;
- _loc1_.dishArrow.stop();
- nowFood.vessel = false;
- _loc1_.zzazang = false;
- _loc1_.noodle = false;
- _loc1_.cookComplete = false;
- _loc1_.foodScore = 0;
- _loc1_.spiceScore = 0;
- _loc1_.wheat = false;
- };
- FoodTree = function()
- {
- };
- FoodTree.prototype.vegetable = false;
- FoodTree.prototype.meat = false;
- FoodTree.prototype.noodle = false;
- FoodTree.prototype.garlic = false;
- FoodTree.prototype.chun = false;
- FoodTree.prototype.sugar = false;
- FoodTree.prototype.oil = false;
- FoodTree.prototype.kettle = false;
- FoodTree.prototype.dish1 = false;
- FoodTree.prototype.dish2 = false;
- FoodTree.prototype.dish3 = false;
- FoodTree.prototype.vessel = false;
- FoodTree.prototype.wheat = false;
- FoodTree.prototype._wheat = false;
- MetaGauge = function(gaugeAction)
- {
- var _loc1_ = _root;
- switch(gaugeAction)
- {
- case "PLAY":
- _loc1_.playMode = "COOK";
- this.mc_gauge.gaugeMask.gotoAndPlay(2);
- break;
- case "STOP":
- _loc1_.playMode = "STOP";
- this.mc_gauge.gaugeMask.stop();
- stopAllSounds();
- _loc1_["vessel_" + nowFood.vessel].gotoAndStop(1);
- CookMeterial(nowFood.vessel);
- break;
- default:
- trace("에러");
- }
- };
- MetaCookButton = function()
- {
- var _loc1_ = _root;
- var _loc2_ = this;
- trace("버튼정의");
- _loc1_.btn_takeOut._visible = false;
- _loc2_.btn_takeOut.onRelease = function()
- {
- ToggleButton(true);
- _root.MetaGauge("STOP");
- this._visible = false;
- _root.btn_takeOff._visible = true;
- };
- _loc2_.btn_takeOff.onRelease = function()
- {
- ToggleButton(false);
- trace("요리시작");
- _root.MetaGauge("PLAY");
- this._visible = false;
- _root.btn_takeOut._visible = true;
- };
- };
- RipeFood = function(foodName, ripePoint)
- {
- };
- ToggleButton = function(toggleType)
- {
- var _loc1_ = this;
- var _loc2_ = toggleType;
- _loc1_.btn_vegetable.enabled = _loc2_;
- _loc1_.btn_meat.enabled = _loc2_;
- _loc1_.btn_noodle.enabled = _loc2_;
- _loc1_.btn_garlic.enabled = _loc2_;
- _loc1_.btn_chun.enabled = _loc2_;
- _loc1_.btn_sugar.enabled = _loc2_;
- _loc1_.btn_oil.enabled = _loc2_;
- _loc1_.btn_kettle.enabled = _loc2_;
- };
- ToggleCookButton = function(toggleType)
- {
- this.btn_takeOff.enabled = toggleType;
- this.btn_takeOut.enabled = toggleType;
- };
- MetaHelp = function()
- {
- var _loc1_ = this;
- _loc1_.mc_skillTree._visible = false;
- _loc1_.mc_skillTree.btn_skillClose.onRelease = function()
- {
- this._parent._visible = false;
- };
- _loc1_.mc_skillTree.btn_skillClose.onRollOver = function()
- {
- this.gotoAndStop(2);
- };
- _loc1_.mc_skillTree.btn_skillClose.onRollOut = function()
- {
- this.gotoAndStop(1);
- };
- _loc1_.mc_skillTree.btn_skillClose.onReleaseOutside = function()
- {
- this.gotoAndStop(1);
- };
- _loc1_.btn_help.onRelease = function()
- {
- _root.mc_skillTree._visible = true;
- };
- _loc1_.btn_help.onRollOver = function()
- {
- this.gotoAndStop(2);
- };
- _loc1_.btn_help.onRollOut = function()
- {
- this.gotoAndStop(1);
- };
- _loc1_.btn_help.onReleaseOutside = function()
- {
- this.gotoAndStop(1);
- };
- };
- MetaItemAction = function(itemName)
- {
- var _loc1_ = this;
- var _loc2_ = _root;
- var _loc3_ = itemName;
- trace("아이템 버튼 정의 " + _loc3_);
- _loc2_["btn_" + _loc3_].onRollOver = function()
- {
- trace(this);
- this.gotoAndStop(2);
- };
- _loc2_["btn_" + _loc3_].onRollOut = function()
- {
- this.gotoAndStop(1);
- };
- _loc2_["btn_" + _loc3_].onReleaseOutside = function()
- {
- this.gotoAndStop(1);
- };
- _loc2_["btn_" + _loc3_].onPress = function()
- {
- this.gotoAndStop(1);
- _root.DupDragClip(this);
- };
- _loc2_.btn_vegetable.onRollOver = function()
- {
- this.gotoAndStop(2);
- };
- };
- MetaItemAction2 = function(itemName, parentFr, childFr)
- {
- var _loc1_ = this;
- var _loc2_ = itemName;
- _loc1_["btn_" + _loc2_].onRollOver = function(exception)
- {
- var _loc1_ = Number(childFr) + 1;
- this.mc_dish.gotoAndStop(_loc1_);
- };
- _loc1_["btn_" + _loc2_].onRollOut = function(exception)
- {
- this.mc_dish.gotoAndStop(childFr);
- };
- _loc1_["btn_" + _loc2_].onReleaseOutside = function(exception)
- {
- this.mc_dish.gotoAndStop(childFr);
- };
- _loc1_["btn_" + _loc2_].onPress = function(exception)
- {
- this.mc_dish.gotoAndStop(childFr);
- _root.DupDragClip(this,parentFr,childFr);
- };
- };
- MetaItemAction3 = function(itemName, parentFr, childFr)
- {
- var _loc1_ = this;
- var _loc2_ = itemName;
- _loc1_["vessel_" + _loc2_].onRollOver = function(exception)
- {
- var _loc1_ = Number(childFr) + 1;
- this.mc_dish.gotoAndStop(_loc1_);
- };
- _loc1_["vessel_" + _loc2_].onRollOut = function(exception)
- {
- this.mc_dish.gotoAndStop(childFr);
- };
- _loc1_["vessel_" + _loc2_].onReleaseOutside = function(exception)
- {
- this.mc_dish.gotoAndStop(childFr);
- };
- _loc1_["vessel_" + _loc2_].onPress = function(exception)
- {
- this.mc_dish.gotoAndStop(childFr);
- _root.DupDragClip(_root.drag_wheat,parentFr,childFr);
- };
- };
- DupDragClip = function(insName, parentFr, childFr)
- {
- var _loc1_ = _root;
- var _loc2_ = this;
- _loc1_.dupNo = _loc1_.dupNo + 1;
- _loc1_.newDupName = "nowDragClip" + _loc1_.dupNo;
- _loc1_.foodMaterial = insName.substr(13,-1);
- trace("_root.foodMaterial : " + _loc1_.foodMaterial);
- if(foodMaterial == "sorce" or foodMaterial == "sugar")
- {
- var _loc3_ = "drag_" + _loc1_.foodMaterial;
- duplicateMovieClip(_loc3_,_loc1_.newDupName,16384 + _loc1_.dupNo);
- _loc2_[_loc1_.newDupName]._x = _xmouse - 30;
- _loc2_[_loc1_.newDupName]._y = _ymouse - 30;
- }
- else if(foodMaterial == "_wheat")
- {
- _loc3_ = "drag" + _loc1_.foodMaterial;
- duplicateMovieClip(_loc3_,_loc1_.newDupName,16384 + _loc1_.dupNo);
- _loc2_[_loc1_.newDupName]._x = _xmouse;
- _loc2_[_loc1_.newDupName]._y = _ymouse;
- }
- else
- {
- duplicateMovieClip(insName,_loc1_.newDupName,16384 + _loc1_.dupNo);
- }
- takeSound.start();
- _loc2_[_loc1_.newDupName].startDrag(false);
- if(parentFr != undefine)
- {
- _loc1_[_loc1_.newDupName].gotoAndStop(parentFr);
- _loc1_[_loc1_.newDupName].mc_dish.gotoAndStop(childFr);
- }
- _loc2_.godHand.swapDepths(_loc1_.dupNo + 10);
- };
- RemoveDragClip = function(insName)
- {
- var _loc1_ = _root;
- _loc1_[insName].stopDrag();
- removeMovieClip(_loc1_[insName]);
- delete _loc1_.newDupName;
- delete _loc1_.foodMaterial;
- };
- CheckCooking = function(vesselName, meterialName)
- {
- var _loc1_ = meterialName;
- var _loc2_ = vesselName;
- var _loc3_ = _root;
- trace("vesselName : " + _loc2_);
- trace("meterialName : " + _loc1_);
- switch(_loc2_)
- {
- case "pot":
- switch(_loc1_)
- {
- case "vegetable":
- BadMeterial();
- break;
- case "meat":
- BadMeterial();
- break;
- case "noodle":
- if(_loc3_.nowFood.kettle != undefine)
- {
- PutInMeterial(_loc2_,_loc1_,"water_kettle");
- }
- else
- {
- PutInMeterial(_loc2_,_loc1_);
- }
- break;
- case "garlic":
- BadMeterial();
- break;
- case "chun":
- BadMeterial();
- break;
- case "oil":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- break;
- case "_wheat":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- break;
- case "kettle":
- if(_loc3_.nowFood.noodle and _loc3_.nowFood.kettle)
- {
- PutInMeterial(_loc2_,_loc1_,"water_kettle");
- _loc3_["vessel_" + _loc2_].pot_kettle._visible = true;
- SetIntV(800,_loc2_,_loc1_);
- }
- else if(_loc3_.nowFood.noodle)
- {
- PutInMeterial(_loc2_,_loc1_,"noodle");
- _loc3_["vessel_" + _loc2_].pot_kettle._visible = true;
- SetIntV(800,_loc2_,_loc1_,"water_kettle");
- }
- else
- {
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"water");
- }
- break;
- case "sugar":
- BadMeterial();
- break;
- case "pineApple":
- BadMeterial();
- break;
- default:
- _loc3_["vessel_" + _loc2_].pot_kettle._visible = false;
- trace("Pot default Mode : " + _loc1_);
- DishLader("Pot",_loc1_,_loc3_.newDupName);
- }
- break;
- case "pan":
- switch(_loc1_)
- {
- case "ketchup":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- break;
- case "vegetable":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- break;
- case "meat":
- BadMeterial();
- break;
- case "_wheat":
- BadMeterial();
- break;
- case "sorce":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- break;
- case "garlic":
- _loc3_.spiceScore += 10;
- break;
- case "pineApple":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- break;
- case "oil":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(1000,_loc2_,_loc1_,"defaultPan");
- _loc3_.spiceScore += 10;
- break;
- case "kettle":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- break;
- case "sugar":
- PutInMeterial(_loc2_,_loc1_);
- SetIntV(800,_loc2_,_loc1_,"defaultPan");
- _loc3_.spiceScore += 10;
- break;
- default:
- trace("Pan default Mode : " + _loc1_);
- DishLader("Pan",_loc1_,_loc3_.newDupName);
- }
- break;
- case "dish3":
- trace("-----------");
- trace("완성 시도");
- trace(_loc1_);
- trace(_loc3_["btn_" + _loc1_]._currentframe);
- trace("-----------");
- if(_loc3_["btn_" + _loc1_]._currentframe == 2)
- {
- if(_loc1_ == "dish1")
- {
- trace("밀가루고기튀김");
- _loc3_.noodle = true;
- if(_loc3_.zzazang)
- {
- _loc3_.cookComplete = true;
- _loc3_.vessel_dish3.gotoAndStop(4);
- }
- else
- {
- _loc3_.vessel_dish3.gotoAndStop(3);
- }
- }
- else if(_loc1_ == "dish2")
- {
- trace("짜장");
- _loc3_.zzazang = true;
- if(_loc3_.noodle)
- {
- _loc3_.cookComplete = true;
- _loc3_.vessel_dish3.gotoAndStop(4);
- }
- else
- {
- _loc3_.vessel_dish3.gotoAndStop(2);
- }
- }
- }
- else
- {
- BadMeterial();
- }
- break;
- case "wheat":
- if(!_loc3_.wheat)
- {
- if(_loc1_ !== "meat")
- {
- trace("밀가루이상");
- BadMeterial();
- }
- else
- {
- trace("밀가루고기반죽");
- _loc3_.wheat = true;
- vessel_wheat.gotoAndStop(4);
- MetaItemAction3("wheat",4,4);
- }
- }
- break;
- default:
- BadMeterial();
- }
- };
- PutInMeterial = function(vesselName, meterialName, returnFr)
- {
- var _loc1_ = vesselName;
- var _loc2_ = meterialName;
- var _loc3_ = _root;
- nowFood[_loc2_] = true;
- nowFood.vessel = _loc1_;
- if(returnFr != undefine)
- {
- this["vessel_" + _loc1_].gotoAndStop(returnFr);
- }
- else
- {
- this["vessel_" + _loc1_].gotoAndStop(_loc2_);
- }
- if(_loc1_ == "pot" and _loc2_ == "kettle")
- {
- _loc3_["vessel_" + _loc1_].pot_kettle._visible = true;
- }
- else
- {
- _loc3_["vessel_" + _loc1_].pot_kettle._visible = false;
- }
- if(_loc1_ == "pot")
- {
- _loc3_.nowPot[_loc2_] = true;
- }
- else if(_loc1_ == "pan")
- {
- _loc3_.nowPan[_loc2_] = true;
- }
- };
- MakeFood = function(btnName, frNo, gradeFrNo, gaugePoint)
- {
- var _loc1_ = btnName;
- var _loc2_ = frNo;
- trace(_loc1_ + " 음식물생성 " + _loc2_);
- trace(gradePoint);
- _root["btn_" + _loc1_].gotoAndStop(_loc2_);
- _root["btn_" + _loc1_].mc_dish.gotoAndStop(gradeFrNo);
- MetaItemAction2(_loc1_,_loc2_,gradeFrNo);
- };
- CookMeterial = function(vesselName)
- {
- var _loc1_ = this;
- trace("게이지 정도 : " + _loc1_.mc_gauge.gaugeMask._currentframe);
- if(_loc1_.mc_gauge.gaugeMask._currentframe <= 10)
- {
- var _loc2_ = 0;
- var _loc3_ = 1;
- }
- else if(_loc1_.mc_gauge.gaugeMask._currentframe > 10 and _loc1_.mc_gauge.gaugeMask._currentframe <= 40)
- {
- _loc2_ = 30;
- _loc3_ = 1;
- }
- else if(_loc1_.mc_gauge.gaugeMask._currentframe > 40 and _loc1_.mc_gauge.gaugeMask._currentframe <= 90)
- {
- _loc2_ = 70;
- _loc3_ = 1;
- }
- else if(_loc1_.mc_gauge.gaugeMask._currentframe > 90 and _loc1_.mc_gauge.gaugeMask._currentframe <= 111)
- {
- _loc2_ = 100;
- _loc3_ = 1;
- }
- else if(_loc1_.mc_gauge.gaugeMask._currentframe > 111 and _loc1_.mc_gauge.gaugeMask._currentframe <= 120)
- {
- _loc2_ = 70;
- _loc3_ = 4;
- }
- else if(_loc1_.mc_gauge.gaugeMask._currentframe > 120 and _loc1_.mc_gauge.gaugeMask._currentframe <= 130)
- {
- _loc2_ = 30;
- _loc3_ = 4;
- }
- else
- {
- _loc2_ = 0;
- _loc3_ = 4;
- }
- if(vesselName == "pot")
- {
- trace("nowPot._wheat : " + nowPot._wheat);
- trace("nowPot.wheat : " + nowPot.wheat);
- trace("nowPot.oil : " + nowPot.oil);
- if(_loc1_.nowPot.kettle and _loc1_.nowPot.noodle)
- {
- var meterialScore = 100;
- MakeFood("dish1",3,_loc3_,_loc2_,"boil_vegetable");
- }
- else if(_loc1_.nowPot.kettle and !_loc1_.nowPot.noodle)
- {
- BadMeterial();
- }
- else if(!_loc1_.nowPot.kettle and _loc1_.nowPot.noodle)
- {
- var meterialScore = 50;
- MakeFood("dish1",3,_loc3_,_loc2_,"boil_vegetable");
- }
- else if(_loc1_.nowPot._wheat and !_loc1_.nowPot.oil)
- {
- var meterialScore = 50;
- MakeFood("dish1",2,_loc3_,_loc2_,"boil_vegetable");
- }
- else if(_loc1_.nowPot._wheat and _loc1_.nowPot.oil)
- {
- var meterialScore = 100;
- MakeFood("dish1",2,_loc3_,_loc2_,"boil_vegetable");
- }
- else
- {
- BadMeterial();
- }
- _root.nowPot = new FoodTree();
- Vessel_Info("Pot");
- _root.noodleScore = _loc2_ + meterialScore;
- }
- else
- {
- trace("----------------");
- trace("----------------");
- trace(_loc1_.nowPan.chun);
- trace(_loc1_.nowPan.dish1);
- trace(_loc1_.nowPan.dish2);
- trace("----------------");
- trace("----------------");
- if(_root.nowPan.chun and (_loc1_.nowPan.vegetable or _loc1_.nowPan.meat))
- {
- trace("볶음짜장-한번에 다 털어 넣은");
- var meterialScore = 30;
- MakeFood("dish2",3,_loc3_,_loc2_,"broil_zzazang");
- }
- else if(_loc1_.nowPan.chun and !_loc1_.nowPan.vegetable and !_loc1_.nowPan.dish1)
- {
- trace("볶음춘장");
- var meterialScore = 30;
- MakeFood("dish2",2,_loc3_,_loc2_,"broil_chun");
- }
- else if(_loc1_.nowPan.sorce and _loc1_.nowPan.vegetable)
- {
- trace("야채+소스");
- var meterialScore = 50;
- if(_loc1_.nowPan.sugar)
- {
- meterialScore += 20;
- }
- if(_loc1_.nowPan.pineApple)
- {
- meterialScore += 10;
- }
- if(_loc1_.nowPan.ketchup)
- {
- meterialScore += 20;
- }
- MakeFood("dish2",2,_loc3_,_loc2_,"broil_sorce");
- }
- else if(_loc1_.nowPan.dish2 == "chunzang" and _loc1_.nowPan.dish1)
- {
- trace("짜장2(야채볶음+볶음춘장)");
- var meterialScore = 100;
- MakeFood("dish2",3,_loc3_,_loc2_,"broil_zzazang");
- }
- else if(_loc1_.nowPan.dish2 == "chunzang" and (_loc1_.nowPan.vegetable or _loc1_.nowPan.meat))
- {
- trace("짜장1(야채+고기+볶음춘장)");
- var meterialScore = 80;
- MakeFood("dish2",3,_loc3_,_loc2_,"broil_zzazang");
- }
- else
- {
- BadMeterial();
- }
- _root.nowPan = new FoodTree();
- Vessel_Info("Pan");
- _root.zzazangScore = _loc2_ + meterialScore;
- }
- };
- BadMeterial = function()
- {
- var _loc2_ = _root;
- trace("금지 사운드 시작");
- trace("--------------------");
- _loc2_.badSound0.stop("badSound0");
- _loc2_.badSound1.stop("badSound1");
- var _loc1_ = random(2);
- _loc2_["badSound" + _loc1_].start();
- };
- DishLader = function(vesselName, dishName, insName)
- {
- var _loc1_ = vesselName;
- var _loc2_ = _root;
- var _loc3_ = insName;
- trace("------------");
- trace(dishName);
- trace(_loc3_);
- trace(_loc2_[_loc3_]._currentframe);
- trace("------------");
- if(dishName == "dish1")
- {
- if(_loc2_[_loc3_]._currentframe == 2)
- {
- trace("야채볶음" + _loc1_);
- if(_loc1_ == "Pan")
- {
- _loc2_["now" + _loc1_].dish1 = true;
- }
- else
- {
- BadMeterial();
- }
- }
- else
- {
- trace("면" + _loc1_);
- if(_loc1_ == "Pot")
- {
- _loc2_["now" + _loc1_].dish1 = true;
- }
- else
- {
- BadMeterial();
- }
- }
- }
- else if(_loc2_[_loc3_]._currentframe == 2)
- {
- trace("춘장" + _loc1_);
- _loc2_["now" + _loc1_].dish2 = "chunzang";
- }
- else
- {
- _loc2_["now" + _loc1_].dish2 = "zzazang";
- trace("짜장" + _loc1_);
- }
- };
- PrintTree = function()
- {
- trace("----------- FoodTree ------------");
- trace("vegetable : " + nowFood.vegetable);
- trace("meat : " + nowFood.meat);
- trace("noodle : " + nowFood.noodle);
- trace("garlic : " + nowFood.garlic);
- trace("chun : " + nowFood.chun);
- trace("sugar : " + nowFood.sugar);
- trace("oil : " + nowFood.oil);
- trace("kettle : " + nowFood.kettle);
- trace("dish1 : " + nowFood.dish1);
- trace("dish2 : " + nowFood.dish2);
- trace("dish : " + nowFood.dish3);
- trace("------------------------------");
- };
- Vessel_Info = function(vesselName)
- {
- var _loc1_ = vesselName;
- var _loc2_ = this;
- trace("----------- " + _loc1_ + " ------------");
- trace("vegetable : " + _loc2_["now" + _loc1_].vegetable);
- trace("meat : " + _loc2_["now" + _loc1_].meat);
- trace("noodle : " + _loc2_["now" + _loc1_].noodle);
- trace("garlic : " + _loc2_["now" + _loc1_].garlic);
- trace("chun : " + _loc2_["now" + _loc1_].chun);
- trace("sugar : " + _loc2_["now" + _loc1_].sugar);
- trace("oil : " + _loc2_["now" + _loc1_].oil);
- trace("kettle : " + _loc2_["now" + _loc1_].kettle);
- trace("dish1 : " + _loc2_["now" + _loc1_].dish1);
- trace("dish2 : " + _loc2_["now" + _loc1_].dish2);
- trace("dish : " + _loc2_["now" + _loc1_].dish3);
- trace("wheat : " + _loc2_["now" + _loc1_].wheat);
- trace("_wheat : " + _loc2_["now" + _loc1_]._wheat);
- trace("------------------------------");
- };
- DecoAction = function(vesselName, typeNo)
- {
- var _loc1_ = _root;
- trace("조리클립 " + vesselName);
- if(vesselName == "pot")
- {
- _loc1_["vessel_" + nowFood.vessel].gotoAndStop("boil");
- }
- else if(nowPan.vegetable)
- {
- _loc1_["vessel_" + nowFood.vessel].gotoAndStop("broil_vegetable" + typeNo);
- }
- else
- {
- _loc1_["vessel_" + nowFood.vessel].gotoAndStop("broil_chun" + typeNo);
- }
- };
- GotoEnding = function()
- {
- var _loc1_ = _root;
- trace("짜장 점수 : " + _loc1_.zzazangScore);
- trace("면 점수 : " + _loc1_.noodleScore);
- removeMovieClip(_loc1_.godHand);
- mouse.show();
- if(_loc1_.spiceScore > 30)
- {
- _loc1_.spiceScore = 30 - _loc1_.spiceScore;
- }
- _loc1_.foodScore = _loc1_.zzazangScore + _loc1_.noodleScore + _loc1_.spiceScore;
- if(_loc1_.foodScore > 400)
- {
- gotoAndPlay(2994);
- }
- else if(_loc1_.foodScore <= 400 and _loc1_.foodScore > 300)
- {
- gotoAndPlay(3550);
- }
- else
- {
- gotoAndPlay(4062);
- }
- };
- nowFood = new FoodTree();
- nowPan = new FoodTree();
- nowPot = new FoodTree();
- DefaultSetting();
- MetaCookButton();
- _root.dishArrow._visible = false;
- _root.dishArrow.stop();
-